home *** CD-ROM | disk | FTP | other *** search
- $! make.com VMS command file to make hcomp.exe and hdecomp.exe
- $!
- $! R. White, 20 April 1992
- $!
- $! first make the library
- $!
- $ set ver
- $ cc bit_input
- $ cc bit_output
- $ cc decode
- $ cc digitize
- $ cc dodecode
- $ cc doencode
- $ cc encode
- $ cc fitspass
- $ cc fitsread
- $ cc get_data
- $ cc getopt
- $ cc hinv
- $ cc hsmooth
- $ cc htrans
- $ cc makefits
- $ cc put_data
- $ cc qread
- $ cc qtree_decode
- $ cc qtree_encode
- $ cc qwrite
- $ cc swap_bytes
- $ cc undigitize
- $ set nover
- $ delete libhcomp.olb;*
- $ lib/cre libhcomp -
- bit_input, -
- bit_output, -
- decode, -
- digitize, -
- dodecode, -
- doencode, -
- encode, -
- fitspass, -
- fitsread, -
- get_data, -
- getopt, -
- hinv, -
- hsmooth, -
- htrans, -
- makefits, -
- put_data, -
- qread, -
- qtree_decode, -
- qtree_encode, -
- qwrite, -
- swap_bytes, -
- undigitize
- $ delete *.obj;*
- $ write sys$output "Library LIBHCOMP is up-to-date."
- $!
- $! now make executables
- $!
- $ cc hcomp
- $ define/user lnk$library sys$library:vaxcrtl
- $ link hcomp,libhcomp/lib
- $ delete hcomp.obj;*
- $ cc hdecomp
- $ define/user lnk$library sys$library:vaxcrtl
- $ link hdecomp,libhcomp/lib
- $ delete hdecomp.obj;*
- $!
- $! make MODIFY
- $!
- $ cc modify
- $ define/user lnk$library sys$library:vaxcrtl
- $ link modify
- $ delete modify.obj;*
- $ write sys$output "Executables HCOMP, HDECOMP, and MODIFY created."
- $ set protect=(o:rwed) *.*;-1
- $ purge
- $ exit
-